home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / cross / Avr.lha / Atmel / Asm / src / makefile < prev    next >
Makefile  |  2000-03-17  |  172b  |  12 lines

  1. asm: asm.o math.o buff.o
  2.     vc asm.o math.o buff.o -o asm
  3.  
  4. asm.o: asm.c
  5.     vc -c asm.c -o asm.o
  6.  
  7. math.o: math.c
  8.     vc -c math.c -o math.o
  9.  
  10. buff.o: buff.c
  11.     vc -c buff.c -o buff.o
  12.